home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / prcm243u.zip / FIDO.CMD < prev    next >
OS/2 REXX Batch file  |  1986-11-04  |  2KB  |  29 lines

  1. ;**********************************************************************
  2. ;*                                                                    *
  3. ;* Sample command file for automatic logon to FIDO BBS systems        *
  4. ;*                                                                    *
  5. ;**********************************************************************
  6.  
  7. EMULATE ANSI                ;* Use ANSI-BBS emulation for ANSI graphics      *
  8. IF NOT LINKED
  9.    DIAL "10"                ;* Call dialing directory entry number 10        *
  10. ENDIF
  11. TRANSMIT "!"                ;* Transmit several Carriage returns waiting     *
  12. PAUSE "1"                   ;* 1 second in between...                        *
  13. TRANSMIT "!"                ;*                                               *
  14. PAUSE "1"                   ;*                                               *
  15. TRANSMIT "!"                ;*                                               *
  16. PAUSE "1"                   ;*                                               *
  17. TRANSMIT "!"                ;*                                               *
  18. PAUSE "1"                   ;*                                               *
  19. TRANSMIT "!"                ;*                                               *
  20. WAITFOR "Your FIRST name:"  ;* Wait for first name prompt...                 *
  21. TRANSMIT "Albert!"          ;* Send name.                                    *
  22. WAITFOR "Your  LAST name:"  ;* Wait for last name prompt...                  *
  23. TRANSMIT "Einstein!"        ;* Send name.                                    *
  24. WAITFOR "right? (y,n)"      ;* wait for name verification prompt...          *
  25. TRANSMIT "y"                ;* send YES                                      *
  26. WAITFOR "Password:"         ;* Wait for FIDO password prompt...              *
  27. TRANSMIT "EMC2!"            ;* Send password                                 *
  28. ALARM                       ;* Sound alarm to let you know logon is complete *
  29.